Pin SHA1 to GHA + renovate config#3655
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3655 +/- ##
==========================================
- Coverage 85.45% 85.39% -0.07%
==========================================
Files 563 563
Lines 48455 48455
Branches 14296 14296
==========================================
- Hits 41409 41378 -31
- Misses 6427 6460 +33
+ Partials 619 617 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
javitonino
approved these changes
May 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the GitHub Actions workflows to improve security and maintainability by pinning all third-party action dependencies to specific commit SHAs or version tags, rather than floating versions. This reduces the risk of unexpected changes or supply chain attacks from external dependencies. Additionally, a Renovate configuration is updated to pin digests for actions.
Key changes include:
Security and Dependency Management
All GitHub Actions in workflow files (such as
actions/checkout,actions/setup-python,Swatinem/rust-cache,arduino/setup-protoc,astral-sh/setup-uv, etc.) are now referenced by specific commit SHAs or version tags instead of floating version numbers. This ensures consistent, reproducible builds and mitigates the risk of supply chain attacks. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25].github/renovate.json: Updated to enablepinDigestsfor dependencies of typeaction, ensuring Renovate will automatically pin action digests in future PRs.These changes collectively harden the CI/CD pipeline against external changes and improve traceability of workflow runs.